home *** CD-ROM | disk | FTP | other *** search
- ###############################################################
- # Description: Playing full length of a wave file in a
- # specific format and check if it sounds proper.
- ###############################################################
-
- open ?AP2PATH?A8B44KS.WAV alias wave1 wait
-
- set wave1 bitspersample 8 wait
- status wave1 bitspersample wait
- =8
-
- set wave1 samplespersec 44100 wait
- status wave1 samplespersec wait
- =44100
-
- set wave1 channels 2 wait
- status wave1 channels wait
- =2
-
- set wave1 format tag ALAW wait
- status wave1 format tag wait
- =ALAW
-
- play wave1 wait
- @CHECK Was the sound without hissing, popping?
-
- close wave1 wait
-